From: Jay Belanger Date: Fri, 17 Aug 2007 20:18:45 +0000 (+0000) Subject: (math-bignum-logb-digit-size,math-bignum-digit-power-of-two): X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~17355 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=1e636c40a880285877e44fa32f81d85175dbde69;p=emacs.git (math-bignum-logb-digit-size,math-bignum-digit-power-of-two): Remove `eval-when-compile's. --- diff --git a/lisp/calc/calc-bin.el b/lisp/calc/calc-bin.el index c58d0addd77..0f219272a5f 100644 --- a/lisp/calc/calc-bin.el +++ b/lisp/calc/calc-bin.el @@ -34,13 +34,13 @@ ;;; Some useful numbers (defconst math-bignum-logb-digit-size - (eval-when-compile (logb math-bignum-digit-size)) + (logb math-bignum-digit-size) "The logb of the size of a bignum digit. This is the largest value of B such that 2^B is less than the size of a Calc bignum digit.") (defconst math-bignum-digit-power-of-two - (eval-when-compile (expt 2 (logb math-bignum-digit-size))) + (expt 2 (logb math-bignum-digit-size)) "The largest power of 2 less than the size of a Calc bignum digit.") ;;; b-prefix binary commands.